{% extends "base.html" %} {% block content %}

My Quiz History

{% if attempts %}
{% for attempt in attempts %} {% endfor %}
# Quiz Title Score Max Score Percentage Started Finished Status Action
{{ forloop.counter }} {{ attempt.quiz.title }} {{ attempt.score }} {{ attempt.max_score }} {% if attempt.max_score %} {{ attempt.score|divisibleby:attempt.max_score|floatformat:2 }}% {% else %} N/A {% endif %} {{ attempt.started_at|date:"M d, Y H:i" }} {% if attempt.finished_at %} {{ attempt.finished_at|date:"M d, Y H:i" }} {% else %} In Progress {% endif %} {% if attempt.finished_at %} Completed {% else %} Ongoing {% endif %} {% if attempt.finished_at %} View Details {% else %} -- {% endif %}
{% else %}
You haven’t attempted any quizzes yet.
{% endif %}
{% endblock %}